home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 1
/
Cream of the Crop 1.iso
/
BUSINESS
/
DEBTFR20.ARJ
/
DFINSTAL.BAT
< prev
next >
Wrap
DOS Batch File
|
1991-12-04
|
923b
|
40 lines
ECHO OFF
CLS
ECHO **** DEBT-FREE Program Installation ****
ECHO.
ECHO.
ECHO This will automatically create a directory called DEBTFREE on
ECHO your %1 drive.
ECHO.
ECHO The correct files will then be copied to that directory.
ECHO.
ECHO If you wish to use a drive other than the %1 drive, hold down the
ECHO CTRL key and push the break key. Then restart this installation utility
ECHO by typing DFINSTAL, a space, and the letter for the drive you wish to use
ECHO followed by a colon. For example, to install on your C drive type:
ECHO.
ECHO DFINSTAL C:
ECHO.
ECHO.
ECHO Ready to install on the %1 drive.
PAUSE
CLS
CD %1\
COPY DF.BAT %1
MD %1DEBTFREE
CD %1DEBTFREE
COPY *.* %1
DEL %1DFINSTAL.BAT
CD %1\DEBTFREE
HDIR/W
ECHO *
ECHO *
ECHO *
ECHO *
ECHO Installation complete.
ECHO *
ECHO Type DF to run DEBT-FREE.
ECHO *
ECHO *
%1